 + Added Table tblArchon_Phrases
 + Added Table tblArchon_PhraseTypes

 + Added Columns Publisher, Identifier, and ContentURL to tblDL_Content
 + Added SeperatedMaterials to tblCol_Collections
 + Added PrimaryEADLevel to tblCol_ContainerTypes
 + Added IntellectualLevel to tblCol_ContainerTypes

 = Changed Title and Filename from text to varchar(255)
 = Changed Caption to Scope in tblDL_Content
 = Changed EADType to EADLevel in tblCol_ContainerTypes
 = Renamed tblCol_ContainerTypes to tblCol_LevelContainers
 = Changed ContainerTypeID to LevelContainerID in tblCol_Content
 = Changed ContainerNumber to LevelContainerNumber in tblCol_Content
 = Changed Scope to Description in tblCol_Content

 - Deleted NameSubUnit from tblShared_Creators

 + INSERT phrase and containertypes modules


= Changed Description in Public Enabled row in tblArchon_Configuration to say Archon instead of SAS

--- After 1.10 ---
 
 = Changed Extent in tblCol_Collections and tblCol_LocationIndex to support 2 characters
   after the decimal point
 - Removed depreciated fields of LastModified and ModifiedByID from tblCol_Locations
   and tblCol_LocationIndex
   
--- After 1.11 ---
 + Added Hash to tblArchon_Sessions
 + Added Researcher to tblArchon_Sessions
 + INSERT 'Admin Phrase' into tblArchon_PhraseTypes
 + Added Enabled to tblDL_Content
 + Added Enabled to tblDL_Files
 + INSERT 'ResearcherTypes' and 'AppointmentTypes' into tblArchon_Modules
 + Added ModuleID to tblArchon_Phrases
 + INSERT 'rad' and 'isad(g)' into tblCollections_DescriptiveRules
 + Added LanguageID to tblCore_Users
 + Added Default Template configurations to tblCore_Configuration for collections, digitallibrary, creators, and subjects
 + INSERT extentunit into tblCore_Modules
 + SubjectSources manager and SubjectTypes manager in tblCore_Modules
 
 = Changed Category in tblArchon_ModuleCategories to CategoryPhraseName (and changed entries)
 = Changed Module in tblArchon_Modules to ModulePhraseName (and changed entries)
 = Near complete reformation of tblArchon_Phrases
 = Near complete reformation of tblArchon_PhraseTypes
 = tblCol_DescRules to tblCol_DescriptionRules
 = Renaming of tables to fit package design
 = DescRulesLong in tblCollections_DescriptionRules to size 75
 = DescRulesCode and DescRulesLong to DescriptiveRulesCode and DescriptiveRulesLong in tblCollections_DescriptiveRules
 = Increased size of tblCore_ModificationLog.Login to 50
 = Assigned PackageID's for tblCore_Configuration
 
 - Removed PhraseName from tblCore_Configuration
 
--- Found While Preparing 2.00 ---
 - Dropped LastModified and ModifiedByID from tblCollections_Content
 - Renamed tblCollections_Collections.DescRulesID to DescriptiveRulesID
 
--- After 2.00beta ---
ArchonFunction in tblCore_ModificationLog increased to 30 characters
DELETEd all Default Template Set options except for the core's
Set default for Researcher in tblCore_Sessions to 0
Description added to tblCollections_Classifications

--- After 2.01 ---
Made OtherNote in tblCollections_Collections into a TEXT ( ALTER TABLE `tblCollections_Collections` CHANGE `OtherURL` `OtherURL` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL  )
Added RootContentID to tblCollections_Content

--- After 2.02 ---
Changed LevelContainerNumber in tblCollections_Content to a decimal(9,2) ( ALTER TABLE `tblCollections_Content` CHANGE `LevelContainerNumber` `LevelContainerNumber` DECIMAL( 9, 2 ) NOT NULL DEFAULT '0' )

--- After 2.10 ---
Inserted Max Thumbnails into tblCore_Configuration - defaults to 20
Added Description to tblCollections_Locations ( ALTER TABLE  `tblCollections_Locations` ADD  `Description` TEXT NULL ; )
ALTER TABLE  `tblCollections_Collections` CHANGE  `SortTitle`  `SortTitle` VARCHAR( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL ,
CHANGE  `AltExtentStatement`  `AltExtentStatement` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ,
CHANGE  `AcquisitionSource`  `AcquisitionSource` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ,
CHANGE  `PreferredCitation`  `PreferredCitation` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ,
CHANGE  `OtherNote`  `OtherNote` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ,
CHANGE  `PublicationNote`  `PublicationNote` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL
Inserted Default Public Script into tblCore_Configuration - defaults to core/index
Inserted Public Phrase into tblCore_PhraseTypes
ALTER TABLE `tblCollections_Classifications` CHANGE `Number` `ClassificationIdentifier` VARCHAR( 50 ) NULL
UPDATE tblCore_Configuration SET Directive = 'Classification Identifier Minimum Length' WHERE PackageID = '#PACKAGE_COLLECTIONS#' AND Directive = 'Classification Number Minimum Length';
Inserted Digital Content Identifier Minimum Length into tblCore_Configuration - defaults to 0
INSERT INTO `Archon`.`tblCollections_EADElements` (`ID` ,`EADElement` ,`EADTag`) VALUES (NULL , 'Material Specific Details', 'materialspec');
CREATE TABLE `Archon`.`tblAccessions_SubjectIndex` (`ID` INT( 11 ) NOT NULL AUTO_INCREMENT , `AccessionID` INT( 11 ) NOT NULL , `SubjectID` INT( 11 ) NOT NULL , PRIMARY KEY ( `ID` )) ENGINE = InnoDB 
Added ExpectedCompletionDate to tblAccessions_Accessions
Inserted Accession Identifier Minimum Length into tblCore_Configuration - should default to 0
Every package except core will DELETE the Default Template Set Configuration on upgrade
Inserted Search Box Lists into tblCore_Configuration - should default to 1

--- After 2.20 ---
Search By Classification defaults to no in configuration options

--- After 2.21 ---
changed field name to allow for mySQL 5.1 compliance (range is reserved word in mySQL 5.1)
ALTER TABLE `tblAccessions_LocationIndex` CHANGE `Range` `RangeValue` VARCHAR( 25 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL
ALTER TABLE `tblCollections_LocationIndex` CHANGE `Range` `RangeValue` VARCHAR( 25 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL
Inserted new EAD Field into user defined fields
INSERT INTO tblCollections_EADElements (ID,EADElement,EADTag) VALUES ('19','Note','note');